if (!localStorage.exists("touch")) localStorage.set("touch", 0);
var touchyData = localStorage.get("touch");
if (touchyData == null) touchyData = 0;
if (touchyData == 8 && hasMemo("cornSeed") && !hasMemo("cornSeed_reaction"))
{
  setMemo("cornSeed_reaction");
  return "corn";
}
if (touchyData == 7)
{
  touchAchievement();
}
if (touchyData == 4)
{
  this.setSpriteName("corn_cut");
}
var ret = "" + touchyData;
if (touchyData < 8)
{
  touchyData++;
  localStorage.set("touch", touchyData);
}

return ret;
